* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f1f5f9;
  color: #333;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 70px 40px;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
  color: white;
}

/* GO HOME BUTTON */
.go-home-btn {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #0ae8f0;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
}

.go-home-btn:hover {
  background: white;
  transform: translateY(-3px);
}

/* 📱 MOBILE */
@media (max-width: 576px) {
  .go-home-btn {
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
  }
}

/* TAG */
.tag {
  background: #facc15;
  color: black;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

/* HERO TEXT */
.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  color: #cbd5e1;
  max-width: 600px;
}

/* PRIVACY SECTION */
.privacy {
  padding: 80px 20px;
  display: flex;
  justify-content: center; /* center container */
}

/* CONTENT WIDTH CONTROL */
.privacy-container {
  max-width: 800px;   /* readable width */
  width: 100%;
}

/* HEADING */
.privacy h2 {
  font-size: 34px;
  margin-bottom: 20px;
  text-align: left; /* ❗ left align */
}

/* PARAGRAPH */
.privacy p {
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 16px;
  text-align: left; /* ❗ left align */
}

/* HEADINGS */
.privacy h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
  text-align: left;
}

.privacy h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 16px;
  text-align: left;
}

/* LIST */
.privacy ul {
  margin-left: 20px; /* thoda indent */
  margin-bottom: 20px;
}

.privacy ul li {
  color: #6b7280;
  margin-bottom: 6px;
  line-height: 1.7;
}

/* FOOT TEXT */
.secure {
  margin-top: 25px;
  color: #374151;
  font-weight: 500;
}

/* MOBILE */
@media(max-width:768px) {
  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .privacy-container {
    padding: 25px;
  }
}

/* CTA */
.cta {
  text-align: center;
  padding-bottom: 80px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  gap: 10px;
}

.call-btn {
  background: #33b5e5;
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  gap: 10px;
}
/* CTA SECTION */
.cta {
  text-align: center;
  background: #2563eb;
  color: white;
  border-radius: 40px;
  padding: 50px 20px;
  margin: 40px 8%;
}

.cta p {
  font-size: 18px;
  margin-bottom: 25px;
}